String:Right(text, len, return)
Copies the rightmost part of a text with length according to len.
-
Number len - desired length of characters to copy.
String return - a String variable to hold the rightmost value.
function main() {
Var:String myStr = "Hello World";
String:Right(myStr, 2, myStr)
Konsol:Log(myStr) //see the log for "ld"
}